home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / uupc11ys.zip / LIB / GETOPT.H < prev    next >
C/C++ Source or Header  |  1992-11-27  |  291b  |  15 lines

  1. /*
  2.  
  3.    getopt.h
  4.  
  5.    Update history:
  6.  
  7.       01Oct89 Add function prototype for getopt                      ahd
  8.   */
  9.  
  10. #define getopt(x,y,z)   GETOPT(x,y,z)  /* Avoid GNU conflict   */
  11. extern int getopt(int argc, char **argv, char *opts);
  12.  
  13. extern int optind;
  14. extern char *optarg;
  15.